home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 2 / Assassins 2 - Ultimate Games No. 2 (1995)(Weird Science)[!][Amiga-CD32-CDTV].iso / sernet / netdnet.doc < prev    next >
Text File  |  1994-11-07  |  5KB  |  140 lines

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
  2. * |_o_o|\\ Copyright (c) 1988, 1989, 1990 The Software Distillery. *
  3. * |. o.| ||          All Rights Reserved                           *
  4. * | .  | ||          Written by Doug Walker and John Toebes        *
  5. * | o  | ||          The Software Distillery                       *
  6. * |  . |//           405 B3 Gooseneck Drive                        *
  7. * ======             Cary, NC 27513                                *
  8. *                    PLINK: DWALKER   BIX: DJWALKER                *
  9. *                    BBS:(919)-460-7430  Deep Thought              *
  10. \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  11.  
  12. SEE THE FILE 'README' IN THIS DISTRIBUTION FOR IMPORTANT COPYRIGHT
  13. INFORMATION.  CONTACT THE AUTHORS IF YOU DO NOT HAVE THIS FILE.
  14.  
  15. ====================================================================
  16.  
  17. INSTALLING THE NETWORK FILESYSTEM:
  18.  
  19. 1. Obtain and install a copy of Matt Dillon's freely redistributable
  20.    serial port networking software, DNET.
  21.  
  22. 2. Copy netdnet-server whereever you copy your DNET servers on your
  23.    machines.  Add an entry to your S:DNET.SERVERS file for NET: with
  24.    a server number of 9492.  A sample DNET.SERVERS file is included.
  25.  
  26. 3. Put a mountlist entry for the network handler in the DEVS:MOUNTLIST
  27.    file on both Amigas.  You can do this by appending the enclosed 
  28.    'mountlist' file to your DEVS:MOUNTLIST file.  Simply attach the 
  29.    enclosed file to the end of DEVS:MOUNTLIST with a text editor.
  30.    Mountlist entries are included for two devicenames, NET: and DNET:.
  31.    If you also use the parallel port version of NET:, mount this version
  32.    as DNET:.
  33.  
  34. 4. Copy netdnet-handler to the l: directory on both machines.
  35.  
  36. ====================================================================
  37.  
  38. RUNNING THE NETWORK FILESYSTEM:
  39.  
  40. 1. Issue the MOUNT command on both Amigas:
  41.  
  42.       MOUNT NET:
  43.  
  44. 2. NET: is now ready for access.  NET: will at first appear to be empty if 
  45.    you do a DIR of it from the CLI.  You can refer to devices on the remote 
  46.    side by NET:devicename/path (for example, NET:DH0/C/LIST)  This will force
  47.    NET: to mount the remote device.  The device (DH0 in this case) will 
  48.    appear in a DIR of NET: after this.  No drawer icons will appear in the 
  49.    workbench window for NET: until you have forced NET: to load them.  Simply 
  50.    issuing the command
  51.  
  52.       CD NET:devicename
  53.  
  54.    will be sufficient to load the device 'devicename'.
  55.  
  56.    The 'devicename' you use can be any mounted device or volume on the
  57.    remote machine.
  58.  
  59. 4. If you want to use NET: with the workbench, you must provide an icon file
  60.    for each device you mount on the remote machine.  You can do this by 
  61.    copying any drawer-type icon file to NET:devicename.info after the
  62.    specified devicename has been mounted.
  63.  
  64.    CD NET:DH0                        ; make sure DH0 is mounted
  65.    COPY SYS:C.INFO NET:DH0.INFO      ; make sure DH0 has an icon file
  66.    
  67.    You only need to do this once for hard disks and other permanent devices, 
  68.    but RAM: will 'forget' this icon every time you reboot, so you will need
  69.    to recopy the icon each time.  (NOTE:  A file will appear in the root of
  70.    the remote device called 'node.rinfo'.  This is where NET: stores the 
  71.    icon file you give it.  Deleting the node.rinfo file will remove your 
  72.    device's icon.)
  73.  
  74.    Note that if you do a DIR of NET:, you will always see the .info files
  75.    for your mounted remote devices EVEN IF THEY DO NOT EXIST.  NET: assumes
  76.    the icon files are there, and doesn't go check unless it needs to.  If
  77.    your .info files are appearing with the DIR command, but not under 
  78.    workbench, you need to copy a drawer-type icon into NET: as described
  79.    above.
  80.  
  81. ====================================================================
  82.  
  83.  
  84. The provided NETSTAT command gives you a visual idea of how much work your
  85. network is doing.  Run it with the command
  86.  
  87. RUN NETSTAT NET:
  88.  
  89. Click on the close gadget in the upper left corner to exit.
  90.  
  91. ====================================================================
  92.  
  93. Differences and enhancements:
  94.  
  95. VERSION 08/90
  96.  
  97. - Fixes for AmigaDOS 2.0
  98.  
  99. - Reboot support cleaned up
  100.  
  101. - Two-way connections supported
  102.  
  103. - One level of data copying removed to improve performance
  104.  
  105. - DNET version updated as well as new parallel port version
  106.  
  107. VERSION 04/90:
  108.   Second parallel port version released
  109.  
  110. - Various minor bug fixes
  111.  
  112. - ACTION_SET_DATE packet implemented
  113.  
  114. - Support added to allow rebooting of one node independant of the other
  115.  
  116. - Automatic mounting of remote nodes at first reference added 
  117.  
  118. - Using Matt Dillon's new parnet.device
  119.  
  120. VERSION 08/89:
  121.   First Parallel port version released
  122.  
  123. VERSION 07/18/89:
  124.  
  125. - Speed improved due to decreasing minimum packet size
  126.   Should help when loading executables over the network and when doing
  127.   directory operations.
  128.  
  129. - Debugging code removed
  130.   This makes the code smaller and faster
  131.  
  132. - Bug fixed in the ACTION_CREATE_DIR packet
  133.  
  134.  
  135. VERSION 05/09/89:
  136.   First version released using DNET
  137.  
  138. ====================================================================
  139.  
  140.